home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000114-20000217 / 000171_news@columbia.edu _Fri Jan 28 17:28:31 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id RAA22333
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 28 Jan 2000 17:28:30 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id RAA18922
  7.     for kermit.misc@watsun.cc.columbia.edu; Fri, 28 Jan 2000 17:09:37 -0500 (EST)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: "Chris James" <cjames@sctcorp.com>
  10. Subject: VMS/CMU/CKermit build problems
  11. Message-ID: <_lok4.52$03.1456@client>
  12. Date: Fri, 28 Jan 2000 17:02:25 -0500
  13. To: kermit.misc@columbia.edu
  14.  
  15.  
  16. VMS Version 7.1
  17. CMU/Tek version 6.6-5A
  18. Kermit Version 7.0.196
  19.  
  20. When building it, I get the following warning messages in the module CKCNET
  21. (I've removed the informational mesages)
  22.  
  23.                                    (struct sockaddr *)&saddr,&saddrlen)) <
  24. 0) {
  25.         ......................................................^
  26. In this statement, the referenced type of the pointer value "&saddrlen" is
  27.  "int", which is not compatible with "unsigned int".
  28.                 At line number 2601 in
  29. AXP1$DKB100:[PRODUCTS.KERMIT.7_0]CKCNET..
  30.  
  31.  
  32.                 if (!getsockname(ttyfd, (struct sockaddr *)&l_addr,
  33. &l_slen)) {
  34.         ............................................................^
  35. In this statement, the referenced type of the pointer value "&l_slen" is
  36. "int",
  37.  which is not compatible with "unsigned int".
  38.                 At line number 2687 in
  39. AXP1$DKB100:[PRODUCTS.KERMIT.7_0]CKCNET..
  40.  
  41.             if (getpeername(ttyfd,(struct sockaddr *)&saddr,&saddrlen) < 0)
  42. {
  43.         ....................................................^
  44. In this statement, the referenced type of the pointer value "&saddrlen" is
  45.  "int", which is not compatible with "unsigned int".
  46.  
  47.  
  48.  
  49.                 At line number 2819 in
  50. AXP1$DKB100:[PRODUCTS.KERMIT.7_0]CKCNET..
  51.  
  52.             if (!getsockname(ttyfd, (struct sockaddr *)&l_addr, &l_slen)) {
  53.         ........................................................^
  54. In this statement, the referenced type of the pointer value "&l_slen" is
  55. "int",
  56.  which is not compatible with "unsigned int".
  57.                 At line number 4170 in
  58. AXP1$DKB100:[PRODUCTS.KERMIT.7_0]CKCNET..
  59.  
  60.                         s = inet_ntoa(r_addr.sin_addr); /* Convert address
  61. to s/
  62.         ................^
  63. In this statement, "inet_ntoa(...)" of type "int", is being converted to
  64.  "pointer to char".
  65.                 At line number 4232 in
  66. AXP1$DKB100:[PRODUCTS.KERMIT.7_0]CKCNET..
  67.  
  68.                     getsockname(sock,(struct sockaddr *)&l_sa,&slen);
  69.         ......................................................^
  70. In this statement, the referenced type of the pointer value "&slen" is
  71. "int",
  72.  which is not compatible with "unsigned int".
  73.                 At line number 5822 in
  74. AXP1$DKB100:[PRODUCTS.KERMIT.7_0]CKCNET..
  75.  
  76. Completed with 0 error(s), 6 warning(s), and
  77.                 24 informational messages.
  78.                 At line number 10584 in
  79. AXP1$DKB100:[PRODUCTS.KERMIT.7_0]CKCNET.
  80.  
  81. I've read the CKVINS.TXT file and see that I may be missing an essential
  82. include file. Thing is, I'm not a "C" programmer and don't know what include
  83. files would be considered essential.
  84.  
  85. Anyone run into this one?
  86.  
  87.  
  88.  
  89.